home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / perl5 / 5.8.7 / shellwords.pl < prev    next >
Text File  |  2006-04-25  |  276b  |  15 lines

  1. ;# shellwords.pl
  2. ;#
  3. ;# Usage:
  4. ;#    require 'shellwords.pl';
  5. ;#    @words = shellwords($line);
  6. ;#    or
  7. ;#    @words = shellwords(@lines);
  8. ;#    or
  9. ;#    @words = shellwords();        # defaults to $_ (and clobbers it)
  10.  
  11. require Text::ParseWords;
  12. *shellwords = \&Text::ParseWords::old_shellwords;
  13.  
  14. 1;
  15.